home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / libs / readline / doc / makefile < prev    next >
Encoding:
Makefile  |  1996-11-22  |  1.1 KB  |  55 lines

  1. # Makefile for Readline/History for OS/2
  2. # Klaus Gebhardt, 1996
  3.  
  4. TEX      = -tex386
  5. TEXINDEX = texindex
  6.  
  7. RLSRC = rlman.tex rluser.tex rltech.tex
  8. HISTSRC = hist.tex hsuser.tex hstech.tex
  9.  
  10. DVIOBJ = readline.dvi history.dvi
  11. INFOOBJ = readline.info history.info
  12. PSOBJ = readline.ps history.ps
  13.  
  14. all: info dvi
  15.  
  16. install: all
  17.     cp *.info h:/apps/emacs/info
  18.     cp *.i?? h:/apps/emacs/info
  19.  
  20. readline.dvi: $(RLSRC)
  21.     $(TEX) rlman.tex
  22.     $(TEXINDEX) rlman.??
  23.     $(TEX) rlman.tex
  24.     mv rlman.dvi readline.dvi
  25.  
  26. readline.info: $(RLSRC)
  27.     makeinfo rlman.tex
  28.  
  29. history.dvi: ${HISTSRC}
  30.     $(TEX) hist.tex
  31.     $(TEXINDEX) hist.??
  32.     $(TEX) hist.tex
  33.     mv hist.dvi history.dvi
  34.  
  35. history.info: ${HISTSRC}
  36.     makeinfo hist.tex
  37.  
  38. readline.ps: readline.dvi
  39.     dvips -D 300 -o $@ readline.dvi
  40.  
  41. history.ps: history.dvi
  42.     dvips -D 300 -o $@ history.dvi
  43.  
  44. info:    $(INFOOBJ)
  45. dvi:    $(DVIOBJ)
  46. ps:    $(PSOBJ)
  47.  
  48.  
  49. distclean mostlyclean clean:
  50.     rm -f *.aux *.cp *.fn *.ky *.log *.pg *.toc *.tp *.vr *.cps *.pgs \
  51.           *.fns *.kys *.tps *.vrs *.o core
  52.  
  53. maintainer-clean realclean:    clean
  54.     rm -f *.dvi *.info *.i?? *.ps
  55.